--- title: "删边问题" created: 2025-11-28 tags: - 算法 --- # 删边问题 ## 题目 [删边问题](https://www.lanqiao.cn/problems/17108/learning/) ![[image-6785598d.png]] ## 思路分析 ## 代码实现 ```cpp #include using namespace std; #define endl '\n' //并查集吗 //输出-1算了 int main() { ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); cout<<-1; return 0; } ``` ## 同类题型 ## 视频讲解 --- ⬅️ [[数三角|数三角]] 🏠 [[00-冲刺国赛]] ➡️ [[AB路线|AB路线]]